home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / mac / developm / source / frntsdk1.cpt / Frontier SDK 1.0 ƒ / Applet Toolkit / cursor.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-10-26  |  1.0 KB  |  75 lines

  1.  
  2. #define cursorinclude /*so other includes can tell if we've been loaded*/
  3.  
  4.  
  5.  
  6. typedef enum tycursortype {
  7.  
  8.     cursorisdirty = -1,
  9.     
  10.     cursorisarrow = -2,
  11.     
  12.     cursorisibeam = iBeamCursor,
  13.     
  14.     cursoriswatch = watchCursor,
  15.     
  16.     cursorishorizontalrail = 256,
  17.     
  18.     cursorisbeachball1 = 257, 
  19.     
  20.     cursorisbeachball2 = 258, 
  21.     
  22.     cursorisbeachball3 = 259, 
  23.     
  24.     cursorisbeachball4 = 260,
  25.     
  26.     cursorispopup = 261,
  27.     
  28.     cursorisearth1 = 262, 
  29.     
  30.     cursorisearth2 = 263, 
  31.     
  32.     cursorisearth3 = 264, 
  33.     
  34.     cursorisearth4 = 265, 
  35.     
  36.     cursorisearth5 = 266,
  37.     
  38.     cursorisearth6 = 267, 
  39.     
  40.     cursorisearth7 = 268,
  41.     
  42.     cursorishollowarrow = 269,
  43.     
  44.     cursorfordraggingmove = 270,
  45.     
  46.     cursorissmallquestionmark = 271,
  47.     
  48.     cursorisno = 272,
  49.     
  50.     cursorisverticalrails = 130,
  51.     
  52.     cursorishorizontalrails = 131,
  53.     
  54.     cursorisslantedrails = 132,
  55.     
  56.     cursorisotherslantedrails = 133,
  57.     
  58.     cursorisbuttonhand = 273,
  59.     
  60.     cursorisgo = 274,
  61.     
  62.     cursorisrightwedge = 275
  63.     } tycursortype;
  64.  
  65.     
  66. void setcursortype (tycursortype);
  67.  
  68. void obscurecursor (void);
  69.     
  70. void initearth (void);
  71.  
  72. void rollearth (void);
  73.  
  74.  
  75.